@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

:root {
  --color-bg: #000000;
  --color-surface: rgba(10, 10, 12, 0.92);
  --color-surface-raised: #121215;
  --color-surface-hover: #1c1c20;
  --color-border: #27272a;
  --color-border-light: #3f3f46;
  --color-text: #ffffff;
  --color-text-secondary: #a1a1aa;
  --color-text-muted: #71717a;
  --color-primary: #ffffff;
  --color-primary-hover: #e4e4e7;
  --color-primary-light: rgba(255, 255, 255, 0.15);
  --color-danger: #ef4444;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-panel: 0 20px 50px rgba(0, 0, 0, 0.85);
  --transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  overflow: hidden;
}

#map {
  position: fixed;
  inset: 0;
  z-index: 1;
}

#loading {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 10000;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

#loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.top-command-bar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 820px;
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #27272a;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.search-nav-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  min-height: 52px;
}

.brand-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  padding: 6px 10px;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 10px;
  flex-shrink: 0;
}

.main-search-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.main-search-wrapper .search-icon {
  position: absolute;
  left: 12px;
  color: #71717a;
  pointer-events: none;
}

.main-search-input {
  width: 100%;
  height: 40px;
  background: #121215;
  border: 1px solid #27272a;
  border-radius: 10px;
  padding: 8px 36px 8px 38px;
  color: #ffffff;
  font-size: 13.5px;
  font-family: inherit;
  transition: all 0.15s ease;
}

.main-search-input::placeholder {
  color: #71717a;
}

.main-search-input:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
  background: #18181b;
}

.search-clear-btn {
  position: absolute;
  right: 10px;
  background: transparent;
  border: none;
  color: #71717a;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.15s;
}

.search-clear-btn:hover {
  color: #ffffff;
}

.map-type-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #121215;
  border: 1px solid #27272a;
  border-radius: 10px;
  color: #a1a1aa;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.map-type-toggle-btn:hover,
.map-type-toggle-btn.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.stats-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 12px;
  background: #121215;
  border: 1px solid #27272a;
  border-radius: 10px;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.stats-separator {
  color: #52525b;
}

.stats-total {
  color: #a1a1aa;
}

.filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #121215;
  border: 1px solid #27272a;
  border-radius: 10px;
  color: #a1a1aa;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-toggle-btn:hover,
.filter-toggle-btn.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-discord-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #ffffff;
  color: #000000;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.15);
}

.btn-discord-nav:hover {
  background: #e4e4e7;
  transform: translateY(-1px);
}

.filters-drawer {
  border-top: 1px solid #27272a;
  padding: 16px 20px 20px;
}

.drawer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #a1a1aa;
}

.filter-range {
  color: #ffffff;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stats-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #27272a;
  font-size: 12.5px;
  color: #a1a1aa;
  flex-wrap: wrap;
  gap: 10px;
}

.summary-val {
  color: #ffffff;
  font-weight: 600;
}

.btn-reset {
  background: transparent;
  border: 1px solid #3f3f46;
  color: #a1a1aa;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-reset:hover {
  background: #27272a;
  color: #ffffff;
  border-color: #52525b;
}

.slider-container {
  height: 5px;
  margin: 7px 4px 4px;
  background: #09090b;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  box-shadow: none;
}

.noUi-connect {
  background: #ffffff;
  border-radius: 0;
}

.noUi-handle {
  width: 14px !important;
  height: 18px !important;
  right: -7px !important;
  top: -8px !important;
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  border-radius: 4px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5) !important;
  cursor: grab !important;
  transition: transform 0.15s ease !important;
}

.noUi-handle:hover {
  transform: scale(1.1) !important;
}

.noUi-handle:active {
  cursor: grabbing !important;
  background: #e4e4e7 !important;
}

.noUi-handle::before,
.noUi-handle::after {
  display: none !important;
}

.noUi-tooltip {
  display: none;
}

.noUi-active .noUi-tooltip {
  display: block;
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border) !important;
  color: var(--color-text) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  padding: 4px 6px !important;
  border-radius: var(--radius-sm) !important;
}

.noUi-pips {
  display: none;
}

.stats-box {
  background: transparent;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stats-label {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.stats-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.actions-row {
  display: flex;
  gap: 8px;
}

.btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #101512;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-border-light);
  color: var(--color-text);
}

.btn-secondary:hover {
  background: var(--color-surface-hover);
}

.download-wrapper {
  position: relative;
}

.download-wrapper .btn .chevron {
  transition: transform 0.2s ease;
}

.download-wrapper .btn .chevron.rotated {
  transform: rotate(180deg);
}

.download-menu {
  position: fixed;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  z-index: 10000;
  min-width: 200px;
}

.download-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

.download-option:hover {
  background: var(--color-surface-hover);
}

.download-option:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.download-option svg {
  color: var(--color-text-secondary);
  flex-shrink: 0;
}

.download-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.download-title {
  font-size: 13px;
  font-weight: 600;
}

.download-desc {
  font-size: 11px;
  color: var(--color-text-muted);
}

.leaflet-container {
  background: #121215;
  font-family: inherit;
}

.leaflet-bar {
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 4px 12px rgba(11, 14, 12, 0.2) !important;
  overflow: hidden;
}

.leaflet-bar a,
.leaflet-bar a:hover {
  width: 30px;
  height: 30px;
  line-height: 29px;
  background: var(--color-surface);
  border-bottom-color: var(--color-border);
  color: var(--color-text);
}

.leaflet-bar a:hover {
  background: var(--color-surface-hover);
}

.leaflet-control-attribution {
  background: rgba(242, 244, 241, 0.88) !important;
  color: #353b37;
}

.leaflet-control-attribution a {
  color: #315d43;
}

.leaflet-popup-content-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
}

.leaflet-popup-tip {
  background: var(--color-surface);
}

.leaflet-popup-content {
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.popup-content {
  max-height: 320px;
  overflow-y: auto;
  padding: 13px 14px;
}

.popup-header {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 12px;
}

.popup-address {
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.popup-location {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.popup-person {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.popup-person:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.popup-person-name {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 3px;
}

.popup-person-meta {
  font-size: 11px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.popup-shipments {
  max-height: 160px;
  overflow-y: auto;
}

.popup-shipment {
  padding: 7px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 12px;
}

.popup-shipment:last-child {
  border-bottom: none;
}

.popup-shipment-order {
  font-weight: 600;
  margin-bottom: 2px;
}

.popup-shipment-meta {
  font-size: 11px;
  color: var(--color-text-secondary);
}

.custom-pin-marker {
  background: none !important;
  border: none !important;
}

.custom-pin-marker .pin-wrapper {
  width: 30px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-pin-marker:hover .pin-wrapper {
  transform: scale(1.25) translateY(-4px);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.65));
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 50% !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45), 0 0 0 3px rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.2s ease, opacity 0.2s ease;
}

.marker-cluster:hover {
  z-index: 1000 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.75), 0 0 0 4px #ffffff;
}

.marker-cluster-small {
  background-color: rgba(16, 185, 129, 0.45);
}

.marker-cluster-small div {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.marker-cluster-medium {
  background-color: rgba(245, 158, 11, 0.45);
}

.marker-cluster-medium div {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.marker-cluster-large {
  background-color: rgba(239, 68, 68, 0.45);
}

.marker-cluster-large div {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.marker-cluster div {
  width: 34px;
  height: 34px;
  margin-left: 3px;
  margin-top: 3px;
  text-align: center;
  border-radius: 50%;
  font: 700 13px "Inter", sans-serif;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.marker-cluster span {
  line-height: 1;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-border-light);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted);
}

@media (max-width: 768px) {
  #filter-panel {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 20px);
    max-width: 520px;
    border-radius: 14px;
  }

  .search-nav-row {
    flex-wrap: wrap;
    padding: 8px 10px;
    gap: 8px;
    min-height: auto;
  }

  .brand-title {
    order: 1;
    height: 38px;
    padding: 6px 10px;
  }

  .main-search-wrapper {
    order: 2;
    flex: 1 1 180px;
    min-width: 0;
  }

  .main-search-input {
    font-size: 13px;
    padding: 8px 32px 8px 36px;
    height: 38px;
    text-overflow: ellipsis;
  }

  .nav-actions {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 6px;
  }

  .map-type-toggle-btn,
  .stats-badge,
  .filter-toggle-btn,
  .btn-discord-nav {
    flex: 1;
    justify-content: center;
    padding: 7px 6px;
    font-size: 12px;
    gap: 4px;
    white-space: nowrap;
    border-radius: 8px;
  }

  .map-type-toggle-btn svg,
  .filter-toggle-btn svg,
  .btn-discord-nav svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .panel-body {
    padding: 14px 12px;
  }
}

@media (max-width: 420px) {
  #filter-panel {
    top: 8px;
    width: calc(100vw - 14px);
  }

  .search-nav-row {
    padding: 8px;
    gap: 6px;
  }

  .brand-title {
    padding: 6px 8px;
    font-size: 11px;
  }

  .main-search-input {
    font-size: 12.5px;
    height: 36px;
  }

  .map-type-toggle-btn,
  .stats-badge,
  .filter-toggle-btn,
  .btn-discord-nav {
    padding: 6px 4px;
    font-size: 11px;
  }
}

.btn-discord {
  background: #ffffff !important;
  color: #000000 !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2) !important;
  transition: transform 0.15s, background 0.15s !important;
}

.btn-discord:hover {
  background: #e4e4e7 !important;
  transform: scale(1.02) !important;
}

.btn-discord svg {
  fill: #000000 !important;
}

.warning-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 32px 16px;
  box-sizing: border-box;
}

.warning-modal {
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 18px;
  width: 100%;
  max-width: 720px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
  color: #a1a1aa;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-sizing: border-box;
  animation: modalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.alert-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 20px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #ef4444;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.security-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #52525b;
}

.modal-hero {
  margin-bottom: 24px;
}

.modal-title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.modal-subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: #a1a1aa;
  margin: 0;
}

.legal-section {
  margin-bottom: 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #71717a;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.legal-card {
  background: #121215;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.law-badge {
  color: #f87171;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.legal-card p {
  font-size: 13px;
  line-height: 1.45;
  color: #d4d4d8;
  margin: 0;
}

.legal-card em {
  color: #a1a1aa;
  font-style: normal;
}

.statement-container {
  background: #121215;
  border: 1px solid #27272a;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}

.statement-header {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #27272a;
}

.statement-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.statement-box h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.statement-box p {
  font-size: 13px;
  line-height: 1.55;
  color: #a1a1aa;
  margin: 0;
}

.statement-box ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.statement-box li {
  font-size: 13px;
  color: #a1a1aa;
  padding-left: 14px;
  position: relative;
}

.statement-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #52525b;
}

.disclaimer-note {
  margin-top: 6px !important;
  font-size: 12px !important;
  color: #71717a !important;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 12px 14px;
}

.modal-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accept-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.accept-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-box {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: #09090b;
  border: 1px solid #3f3f46;
  border-radius: 5px;
  margin-top: 2px;
  transition: all 0.15s ease;
  position: relative;
}

.accept-label:hover .checkbox-box {
  border-color: #71717a;
}

.accept-label input:checked ~ .checkbox-box {
  background: #ffffff;
  border-color: #ffffff;
}

.accept-label input:checked ~ .checkbox-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #e4e4e7;
}

.btn-proceed {
  width: 100%;
  padding: 14px 24px;
  background: #ffffff;
  color: #000000;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-proceed:hover:not(:disabled) {
  background: #e4e4e7;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.25);
}

.btn-proceed:disabled {
  background: #1c1c20;
  color: #52525b;
  border: 1px solid #27272a;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.7;
}

@media (max-width: 640px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .warning-modal {
    padding: 20px 16px;
  }
  .modal-title {
    font-size: 22px;
  }
}

